home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / hydra / amiga.h < prev    next >
C/C++ Source or Header  |  1995-12-20  |  693b  |  27 lines

  1. /*
  2. **    Amiga support module for HYDRA protocol sample implementation.
  3. **
  4. **    Written by    Olaf Barthel
  5. **            Brabeckstrasse 35
  6. **            D-30559 Hannover
  7. **
  8. **            eMail: olsen@sourcery.han.de
  9. **
  10. **    Freely distributable.
  11. */
  12.  
  13. #include <exec/types.h>
  14.  
  15. extern struct IOStdReq    *FileRequest,
  16.             *RemoteRequest,
  17.             *LocalRequest,
  18.             *LogRequest;
  19.  
  20. extern VOID __stdargs     ConPrintf(struct IOStdReq *,STRPTR,...);
  21. extern VOID __stdargs     ConPutc(struct IOStdReq *Request,UBYTE Char);
  22. VOID             ConPuts(struct IOStdReq *Request,STRPTR String);
  23. extern VOID         ConMove(struct IOStdReq *Request,LONG x,LONG y);
  24. extern VOID         ConClear(struct IOStdReq *Request);
  25. extern int         ConGetKey(VOID);
  26. extern int         ConScanKey(VOID);
  27.